Tables [dbo].[SortNameAdjustmentActionRef]
Properties
PropertyValue
Created10:31:39 AM Tuesday, March 02, 2010
Last Modified11:40:08 AM Monday, February 20, 2012
Columns
NameData TypeMax Length (Bytes)Allow Nulls
Cluster Primary Key PK_SortNameAdjustmentActionRef: SortNameAdjustmentActionCodeSortNameAdjustmentActionCodenchar(1)2
No
Indexes AK_SortNameAdjustmentActionRef_SortNameAdjustmentActionName: SortNameAdjustmentActionNameSortNameAdjustmentActionNamenvarchar(20)40
No
Indexes AK_SortNameAdjustmentActionRef_SortNameAdjustmentActionDesc: SortNameAdjustmentActionDescSortNameAdjustmentActionDescnvarchar(50)100
No
Indexes Indexes
NameColumnsUnique
Cluster Primary Key PK_SortNameAdjustmentActionRef: SortNameAdjustmentActionCodePK_SortNameAdjustmentActionRefSortNameAdjustmentActionCode
Yes
AK_SortNameAdjustmentActionRef_SortNameAdjustmentActionDescSortNameAdjustmentActionDesc
Yes
AK_SortNameAdjustmentActionRef_SortNameAdjustmentActionNameSortNameAdjustmentActionName
Yes
SQL Script
CREATE TABLE [dbo].[SortNameAdjustmentActionRef]
(
[SortNameAdjustmentActionCode] [nchar] (1) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[SortNameAdjustmentActionName] [nvarchar] (20) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL,
[SortNameAdjustmentActionDesc] [nvarchar] (50) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL
) ON [PRIMARY]

GO
ALTER TABLE [dbo].[SortNameAdjustmentActionRef] ADD CONSTRAINT [PK_SortNameAdjustmentActionRef] PRIMARY KEY CLUSTERED ([SortNameAdjustmentActionCode]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[SortNameAdjustmentActionRef] ADD CONSTRAINT [AK_SortNameAdjustmentActionRef_SortNameAdjustmentActionDesc] UNIQUE NONCLUSTERED ([SortNameAdjustmentActionDesc]) ON [PRIMARY]
GO
ALTER TABLE [dbo].[SortNameAdjustmentActionRef] ADD CONSTRAINT [AK_SortNameAdjustmentActionRef_SortNameAdjustmentActionName] UNIQUE NONCLUSTERED ([SortNameAdjustmentActionName]) ON [PRIMARY]
GO
Uses
Used By